@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*--------------------------------------------------------------
# General Start Styles
--------------------------------------------------------------*/

/* :root {
    --swiper-theme-color: #000 !important;
    --primary-color: #b58728;
    --color-black: black;
    --color-lightgrey: rgb(226, 223, 223);

} */

/* Fonts */
:root {
    --default-font: "Open Sans", serif;
    --heading-font: "Jost", serif;
    --nav-font: "Montserrat", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #161515;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #2c4964;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #b58729;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #2c4964;
    /* The default color of the main navmenu links */
    --nav-hover-color: #1977cc;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c4964;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1977cc;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f7fc;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Open Sans", serif;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

p,
span {
    font-size: 1rem;
    line-height: 1.7;
}

.generalGetContentContainer {

    h1,
    h2,
    h3,
    h4,
    h5 {
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 15px;
    }

    img {
        width: 100%;
        height: auto;
        padding-bottom: 20px;
    }
}

/*--------------------------------------------------------------
# Back To Top Button
--------------------------------------------------------------*/

button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #3e0c0c;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 10px;
    /* -webkit-border-radius: 50px;
    -moz-border-radius: 50px; */
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    /* vertical-align: middle; */
    border-bottom: solid 10px white;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: var(--primary-color);
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: var(--primary-color);
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/

.aside {
    display: none;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar .leftSide {
    display: flex;
    flex-direction: row;
    gap: 2em;
    font-family: "Roboto", serif;
}

.topbar .leftSide a {
    display: flex;
    flex-direction: row;
    gap: 0.25em;
    align-items: center;
    padding: 10px 0;
}

.topbar .leftSide a svg {
    height: 13px;
    aspect-ratio: 1/1;
    fill: black;
}

.topbar .leftSide a span {
    font-size: 1rem;
}

.topbar .rightSide {
    display: flex;
    gap: 0.75em;
    align-items: center;
}

.topbar .rightSide a svg {
    height: 18px;
    aspect-ratio: 1/1;
    fill: black;
    transition: all 0.2s ease-in-out;
}

.topbar .rightSide a svg:hover {
    fill: rgb(67, 67, 67);
}

.main-header .afterLogo .menuArea ul li {
    margin-left: 2rem;
    position: relative;
}

.main-header .afterLogo .menuArea ul li a {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.main-header .afterLogo .menuArea ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.main-header .afterLogo .menuArea ul li:hover a::before {
    width: 100%;
    visibility: visible;
}

.main-header .afterLogo .menuArea ul li ul.subMenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    background-color: orange;
}

.main-header .afterLogo .menuArea ul li ul.subMenu li {
    background-color: blue;
    margin-left: 0;
    padding: 5px 10px;
    width: 100%;
}

.main-header .afterLogo .menuArea ul li:hover ul.subMenu {
    display: flex;

}

.main-header .afterLogo .button a {
    background-color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-header .afterLogo .button a:hover {
    background-color: rgb(from var(--primary-color) r g b / 0.8);
}

.main-header .mainLogo .logo {
    height: 4.5em;
    width: auto;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.main-header .afterLogo .menuArea .main-menu ul.nav-menu {
    display: flex;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    /* background-color: var(--background-color); */
    position: absolute;
    width: 100%;
}

.header .topbar {
    background-color: var(--accent-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info a {
    font-style: normal;
    color: white;
    gap: 0.35em;
    font-family: var(--default-font);
    ;
}

.header .topbar .contact-info a svg {
    height: 14px;
    width: 14px;
}

.header .topbar .contact-info a span {
    font-size: 0.85rem;
}
.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;

}

.header .topbar .social-links a svg {
    height: 14px;
    width: 14px;
    fill: white;
    transition: all 0.3s ease;
}

.header .topbar .social-links a:hover svg {
    fill: rgb(224, 222, 222);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
    background-color: transparent;
    transition: all 0.3s ease;
    /* position: absolute;
    width: 100%; */
}

.scrolled .header .branding {
    background-color: white;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 50px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: white;
        font-size: 0.85rem;
        padding: 0 2px;
        font-family: var(--default-color);
        text-transform: uppercase;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        gap: 0.3em;
        font-family: var(--heading-font);
    }

    .navmenu span {
        font-size: 0.85rem;
    }

    .navmenu a svg {
        height: 16px;
        width: 16px;
        fill: white;
    }

    .navmenu a:hover svg,
    .navmenu a:focus svg {
        fill: var(--accent-color);
    }

    .navmenu li:hover a svg {
        fill: var(--accent-color);
    }

    .navmenu .dropdown ul li a svg {
        height: 16px;
        width: 16px;
        fill: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul li:hover a svg,
    .navmenu .dropdown ul li:focus a svg {
        fill: var(--accent-color);
    }

    .scrolled .navmenu a,
    .scrolled .navmenu a:focus {
        color: var(--accent-color);

        svg {
            fill: var(--accent-color);
        }
    }

    .scrolled .navmenu .dropdown ul li a svg {
        fill: var(--nav-dropdown-color);
    }

    .scrolled .navmenu .dropdown ul li:hover a svg {
        fill: var(--accent-color);
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--accent-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 50% 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--heading-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a span {
        font-size: 17px;
    }

    .navmenu a svg {
        height: 16px;
        width: 16px;
        color: black;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer {
    font-family: var(--nav-font);
}

footer .main-footer .award {
    gap: 1em;
}

footer .main-footer .award img {
    width: 150px;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
	border-radius: 5px;
}

footer .main-footer .result {
    gap: 6em;
}

footer .main-footer .result .items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .main-footer .result .items .number p,
footer .main-footer .result .items .number p span {
    font-size: 3rem;
    font-weight: 600;
}

footer .main-footer .result .items .description p {
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 1400px) {}

@media (max-width: 1366px) {
    footer .main-footer .result {
        gap: 6em;
    }
}

@media (max-width: 1200px) {
    footer .main-footer .result {
        gap: 3em;
    }
}

@media (max-width: 1024px) {
    footer .main-footer .result {
        gap: 3em;
    }
}

@media (max-width: 992px) {
    footer .main-footer .result {
        gap: 3em;
    }
}

@media (max-width: 912px) {
    footer .main-footer {
        flex-direction: column;
        gap: 4em;
    }

    footer .main-footer .result {
        gap: 3em;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    footer .main-footer {
        flex-direction: column;
        gap: 4em;
		padding-top: 5em !important;
    }

    footer .main-footer .result {
        gap: 3em;
        flex-direction: column;
    }
}

@media (max-width: 576px) {}



/* Swiper Style */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background-color: var(--accent-color) !important;
    width: 50px !important;
    height: 5px !important;
    border-radius: 5px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255, 255, 255, 0.76) !important;
}

.scale-up-center {
    -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* HOMEPAGE */
.homepageSliderItem h2 {
    color: white;
    font-size: 2rem;
}

.homepageSliderItem p {
    color: white;
    width: 40%;
    font-size: 1.15rem;
}

.homepageSliderItem a {
    background-color: var(--accent-color);
    padding: 3px 20px;
    border-radius: 20px;
    color: white;
    font-size: 0.80rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: 2px solid var(--accent-color);
}

.homepageSliderItem a:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.textLeft {
    text-align: left;
}

.textRight {
    text-align: right;
}

.textCenter {
    text-align: center;
}



@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .homepageSliderItem p {
        width: 100%;
    }
}

@media (max-width: 576px) {}

/* ABOUT US PAGE */


.pageCover {
    width: 100%;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
}

.pageCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

.sidebarServices {
    background-color: var(--accent-color);
    padding: 1em 2em;
    border-radius: 5px;
    font-family: var(--nav-font);
}

.sidebarServices ul li {
    padding: 7px 0;
    border-bottom: 0.5px solid lightgray;
    transition: all 0.3s ease;
}

.sidebarServices ul li:last-child {
    border-bottom: none;
}

.sidebarServices ul li a {
    font-weight: 500;
    transition: 0.3s all ease;
}

.sidebarServices ul li:hover {
    background-color: rgba(255, 255, 255, 0.117);

    a {
        font-weight: 600;
    }
}


/* News Page */
.mainNews .image {
    overflow: hidden;
}

.mainNews .image img {
    width: 100%;
    aspect-ratio: 6/4;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.mainNews .image img:hover {
    opacity: 0.8;
    filter: blur(1px);
}

.mainNews .title {
    font-size: 1.5rem;
    font-weight: 600;
}

.mainNews .date {
    font-size: 0.80rem;
}

.newsContainer {
    background-color: #ebebeb;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    overflow: hidden;
}

.newsContainer:hover {
    background-color: #ebebeb5b;
}

.newsContainer .imageContainer {
    overflow: hidden;
}

.newsContainer .imageContainer img {
    width: 100%;
    aspect-ratio: 6/4;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

.newsContainer .imageContainer img:hover {
    transform: scale(1.1);
}

.newsContainer .content {
    padding: 13px;
}

.newsContainer .content .title {
    font-size: 1.05rem;
    font-weight: 600;
}

.newsContainer .content .date {
    font-size: 0.75rem;
}

.newsContainer .content p {
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .mainNews .title {
        padding-top: 20px;
    }

    .newsContainer {
        background-color: transparent;
        padding-bottom: 15px;
        border-bottom: 1px solid lightgray;
        border-radius: 0px;
		display: flex;
		flex-wrap: nowrap;
    }

    .newsContainer a {
        display: flex;
		width: 100%;
    }

    .newsContainer .imageContainer {
        width: 100%;
    }

    .newsContainer .content {
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
	
	.newsContainer .content a {
		display: flex;
        width: 100%;
        flex-direction: column;
	}

    .newsContainer .content p {
        display: none;
    }
	

}

@media (max-width: 576px) {}


/* Publication Page */
.bookContainer {
    margin-bottom: 20px;
}
.bookContainer .image img {
    width: 100%;
    aspect-ratio: 4/6;
    object-fit: cover;
    object-position: center;
	border-radius: 2px;
}

.bookContainer .title {
    font-weight: 600;
}

.bookContainer a {
    padding: 5px 20px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.bookContainer a:hover {
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

/* Our Teams Page */
.teamContainer {
    margin-bottom: 40px;
    text-align: center;
    cursor: pointer;
}
.teamContainer .image img {
    width: 100%;
    aspect-ratio: 4/4;
	border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: all 0.2s ease;
}
.teamContainer .image img:hover {
    opacity: 0.8;
}
.teamContainer .title {
    font-weight: 600;
}

.teamContainer a {
    padding: 5px 20px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.teamContainer a:hover {
    background-color: var(--accent-color);
    color: white;
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}


/* Contact Page Style Start */
.generalContact {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.generalContact .item {
    display: flex;
    gap: 1em;
    align-items: center;
}

.socialIcon {
    .footer-icon {
        padding-top: 1em;
        display: flex;
        gap: 1em;
    }
    
    .footer-icon a {
        /* padding: 5px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-icon {
        padding-top: 1em;
        display: flex;
        gap: 0.2em;
    }
    
    .footer-icon .icons {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        padding: 0.3em;
        height: 1.5em;
        width: 1.5em;
        border-radius: 0.2em;
        transition: all 0.3s ease-in-out;
    }
    
    .footer-icon .icons:hover {
        transform: scale(1.1);
    }
}

.contact-page-contact-form {
    padding-bottom: 30px;
    width: 80%;
}

.contact-page-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-contact-form form input {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form input::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form textarea {
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
    height: 200px;
}

.contact-page-contact-form form textarea::placeholder {
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form button {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: white;
    font-size: 16px;
    font-family: "Montserrat", serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-page-contact-form form button:hover {
    background-color: white;
    color: var(--accent-color);
}

.eachProductContainer {
    display: flex
    ;
        justify-content: space-between;
        gap: 30px;
        .productTextContainer,
        .careerImageMainContainer {
            width: 50%;
        }
}

@media (max-width: 1400px) {}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .eachProductContainer {
        flex-direction: column;
        .productTextContainer, .careerImageMainContainer {
            width: 100%;
        
        }
        .contact-page-contact-form {
            width: 100%;
        }
    }
}

@media (max-width: 576px) {}


/* Contact Page Style End */

.screen-reader-text {
	font-size: 0.85rem;
}